1 ; UltimateKEYS - 2020-11-30.ahk
3 ; Created by : Pieter Degroote
5 ; License : GNU General Public License Version 3
7 ; GitHub : https://github.com/pieter-degroote/UltimateKEYS
12 ; Keyboard layout (on Windows OS) : US QWERTY
14 ; AutoHotkey v1.1 (https://www.autohotkey.com/)
18 ListLines Off ; omits recently executed lines from history (for privacy and security)
19 #KeyHistory 0 ; disables the key history (for privacy and security)
22 ; Dead Key : Circumflex Accent
24 dkCircumflex := ComObjCreate("Scripting.Dictionary")
25 dkCircumflex.item["a"] := "{u+00e2}" ; (â) a with circumflex
26 dkCircumflex.item["A"] := "{u+00c2}" ; (Â) A with circumflex
27 dkCircumflex.item["c"] := "{u+0109}" ; (ĉ) c with circumflex
28 dkCircumflex.item["C"] := "{u+0108}" ; (Ĉ) C with circumflex
29 dkCircumflex.item["e"] := "{u+00ea}" ; (ê) e with circumflex
30 dkCircumflex.item["E"] := "{u+00ca}" ; (Ê) E with circumflex
31 dkCircumflex.item["g"] := "{u+011d}" ; (ĝ) g with circumflex
32 dkCircumflex.item["G"] := "{u+011c}" ; (Ĝ) G with circumflex
33 dkCircumflex.item["h"] := "{u+0125}" ; (ĥ) h with circumflex
34 dkCircumflex.item["H"] := "{u+0124}" ; (Ĥ) H with circumflex
35 dkCircumflex.item["i"] := "{u+00ee}" ; (î) i with circumflex
36 dkCircumflex.item["I"] := "{u+00ce}" ; (Î) I with circumflex
37 dkCircumflex.item["j"] := "{u+0135}" ; (ĵ) j with circumflex
38 dkCircumflex.item["J"] := "{u+0134}" ; (Ĵ) J with circumflex
39 dkCircumflex.item["o"] := "{u+00f4}" ; (ô) o with circumflex
40 dkCircumflex.item["O"] := "{u+00d4}" ; (Ô) O with circumflex
41 dkCircumflex.item["s"] := "{u+015d}" ; (ŝ) s with circumflex
42 dkCircumflex.item["S"] := "{u+015c}" ; (Ŝ) S with circumflex
43 dkCircumflex.item["u"] := "{u+00fb}" ; (û) u with circumflex
44 dkCircumflex.item["U"] := "{u+00db}" ; (Û) U with circumflex
45 dkCircumflex.item["w"] := "{u+0175}" ; (ŵ) w with circumflex
46 dkCircumflex.item["W"] := "{u+0174}" ; (Ŵ) W with circumflex
47 dkCircumflex.item["y"] := "{u+0177}" ; (ŷ) y with circumflex
48 dkCircumflex.item["Y"] := "{u+0176}" ; (Ŷ) Y with circumflex
49 dkCircumflex.item["z"] := "{u+1e91}" ; (ẑ) z with circumflex
50 dkCircumflex.item["Z"] := "{u+1e90}" ; (Ẑ) Z with circumflex
51 dkCircumflex.item["1"] := "{u+21d9}" ; (⇙) south west double arrow
52 dkCircumflex.item["2"] := "{u+21d3}" ; (⇓) downwards double arrow
53 dkCircumflex.item["3"] := "{u+21d8}" ; (⇘) south east double arrow
54 dkCircumflex.item["4"] := "{u+21d0}" ; (⇐) leftwards double arrow
55 dkCircumflex.item["5"] := "{u+21d5}" ; (⇕) up down double arrow
56 dkCircumflex.item["6"] := "{u+21d2}" ; (⇒) rightwards double arrow
57 dkCircumflex.item["7"] := "{u+21d6}" ; (⇖) north west double arrow
58 dkCircumflex.item["8"] := "{u+21d1}" ; (⇑) upwards double arrow
59 dkCircumflex.item["9"] := "{u+21d7}" ; (⇗) north east double arrow
60 dkCircumflex.item["0"] := "{u+21d4}" ; (⇔) left right double arrow
61 dkCircumflex.item["!"] := "{u+21d9}" ; (⇙) south west double arrow
62 dkCircumflex.item["@"] := "{u+21d3}" ; (⇓) downwards double arrow
63 dkCircumflex.item["#"] := "{u+21d8}" ; (⇘) south east double arrow
64 dkCircumflex.item["$"] := "{u+21d0}" ; (⇐) leftwards double arrow
65 dkCircumflex.item["%"] := "{u+21d5}" ; (⇕) up down double arrow
66 dkCircumflex.item["^"] := "{u+21d2}" ; (⇒) rightwards double arrow
67 dkCircumflex.item["&"] := "{u+21d6}" ; (⇖) north west double arrow
68 dkCircumflex.item["*"] := "{u+21d1}" ; (⇑) upwards double arrow
69 dkCircumflex.item["("] := "{u+21d7}" ; (⇗) north east double arrow
70 dkCircumflex.item[")"] := "{u+21d4}" ; (⇔) left right double arrow
71 dkCircumflex.item[" "] := "{^}" ; circumflex accent
73 ; Smart error-tolerant optimization for circumflex in French
75 dkCircumflex.item[chr(0x00e4)] := "{u+00e2}" ; (ä -> â) a with circumflex
76 dkCircumflex.item[chr(0x00c4)] := "{u+00c2}" ; (Ä -> Â) A with circumflex
77 dkCircumflex.item[chr(0x00eb)] := "{u+00ea}" ; (ë -> ê) e with circumflex
78 dkCircumflex.item[chr(0x00cb)] := "{u+00ca}" ; (Ë -> Ê) E with circumflex
79 dkCircumflex.item[chr(0x00ef)] := "{u+00ee}" ; (ï -> î) i with circumflex
80 dkCircumflex.item[chr(0x00cf)] := "{u+00ce}" ; (Ï -> Î) I with circumflex
81 dkCircumflex.item[chr(0x00f6)] := "{u+00f4}" ; (ö -> ô) o with circumflex
82 dkCircumflex.item[chr(0x00d6)] := "{u+00d4}" ; (Ö -> Ô) O with circumflex
83 dkCircumflex.item[chr(0x00fc)] := "{u+00fb}" ; (ü -> û) u with circumflex
84 dkCircumflex.item[chr(0x00dc)] := "{u+00db}" ; (Ü -> Û) U with circumflex
89 dkCaron := ComObjCreate("Scripting.Dictionary")
90 dkCaron.item["a"] := "{u+01ce}" ; (ǎ) a with caron
91 dkCaron.item["A"] := "{u+01cd}" ; (Ǎ) A with caron
92 dkCaron.item["c"] := "{u+010d}" ; (č) c with caron
93 dkCaron.item["C"] := "{u+010c}" ; (Č) C with caron
94 dkCaron.item["d"] := "{u+010f}" ; (ď) d with caron
95 dkCaron.item["D"] := "{u+010e}" ; (Ď) D with caron
96 dkCaron.item["e"] := "{u+011b}" ; (ě) e with caron
97 dkCaron.item["E"] := "{u+011a}" ; (Ě) E with caron
98 dkCaron.item["g"] := "{u+01e7}" ; (ǧ) g with caron
99 dkCaron.item["G"] := "{u+01e6}" ; (Ǧ) G with caron
100 dkCaron.item["h"] := "{u+021f}" ; (ȟ) h with caron
101 dkCaron.item["H"] := "{u+021e}" ; (Ȟ) H with caron
102 dkCaron.item["i"] := "{u+01d0}" ; (ǐ) i with caron
103 dkCaron.item["I"] := "{u+01cf}" ; (Ǐ) I with caron
104 dkCaron.item["j"] := "{u+01f0}" ; (ǰ) j with caron
105 dkCaron.item["k"] := "{u+01e9}" ; (ǩ) k with caron
106 dkCaron.item["K"] := "{u+01e8}" ; (Ǩ) K with caron
107 dkCaron.item["l"] := "{u+013e}" ; (ľ) l with caron
108 dkCaron.item["L"] := "{u+013d}" ; (Ľ) L with caron
109 dkCaron.item["n"] := "{u+0148}" ; (ň) n with caron
110 dkCaron.item["N"] := "{u+0147}" ; (Ň) N with caron
111 dkCaron.item["o"] := "{u+01d2}" ; (ǒ) o with caron
112 dkCaron.item["O"] := "{u+01d1}" ; (Ǒ) O with caron
113 dkCaron.item["r"] := "{u+0159}" ; (ř) r with caron
114 dkCaron.item["R"] := "{u+0158}" ; (Ř) R with caron
115 dkCaron.item["s"] := "{u+0161}" ; (š) s with caron
116 dkCaron.item["S"] := "{u+0160}" ; (Š) S with caron
117 dkCaron.item["t"] := "{u+0165}" ; (ť) t with caron
118 dkCaron.item["T"] := "{u+0164}" ; (Ť) T with caron
119 dkCaron.item["u"] := "{u+01d4}" ; (ǔ) u with caron
120 dkCaron.item["U"] := "{u+01d3}" ; (Ǔ) U with caron
121 dkCaron.item["v"] := "{u+01da}" ; (ǚ) u with diaeresis and caron
122 dkCaron.item["V"] := "{u+01d9}" ; (Ǚ) U with diaeresis and caron
123 dkCaron.item["z"] := "{u+017e}" ; (ž) z with caron
124 dkCaron.item["Z"] := "{u+017d}" ; (Ž) Z with caron
125 dkCaron.item["3"] := "{u+01ef}" ; (ǯ) small letter ezh with caron
126 dkCaron.item["#"] := "{u+01ee}" ; (Ǯ) capital letter ezh with caron
127 dkCaron.item["2"] := "{u+25bc}" ; (▼) black down-pointing triangle
128 dkCaron.item["@"] := "{u+25bd}" ; (▽) white down-pointing triangle
129 dkCaron.item["4"] := "{u+25c0}" ; (◀) black left-pointing triangle
130 dkCaron.item["$"] := "{u+25c1}" ; (◁) white left-pointing triangle
131 dkCaron.item["6"] := "{u+25b6}" ; (▶) black right-pointing triangle
132 dkCaron.item["^"] := "{u+25b7}" ; (▷) white right-pointing triangle
133 dkCaron.item["8"] := "{u+25b2}" ; (▲) black up-pointing triangle
134 dkCaron.item["*"] := "{u+25b3}" ; (△) white up-pointing triangle
135 dkCaron.item[" "] := "{u+02c7}" ; (ˇ) caron
138 ; Dead Key : Ring/Dot Above
140 dkRingDotAbove := ComObjCreate("Scripting.Dictionary")
141 dkRingDotAbove.item["a"] := "{u+00e5}" ; (å) a with ring above
142 dkRingDotAbove.item["A"] := "{u+00c5}" ; (Å) A with ring above
143 dkRingDotAbove.item[chr(0x00e4)] := "{u+0227}" ; (ä -> ȧ) a with dot above
144 dkRingDotAbove.item[chr(0x00c4)] := "{u+0226}" ; (Ä -> Ȧ) A with dot above
145 dkRingDotAbove.item["b"] := "{u+1e03}" ; (ḃ) b with dot above
146 dkRingDotAbove.item["B"] := "{u+1e02}" ; (Ḃ) B with dot above
147 dkRingDotAbove.item["c"] := "{u+010b}" ; (ċ) c with dot above
148 dkRingDotAbove.item["C"] := "{u+010a}" ; (Ċ) C with dot above
149 dkRingDotAbove.item["d"] := "{u+1e0b}" ; (ḋ) d with dot above
150 dkRingDotAbove.item["D"] := "{u+1e0a}" ; (Ḋ) D with dot above
151 dkRingDotAbove.item["e"] := "{u+0117}" ; (ė) e with dot above
152 dkRingDotAbove.item["E"] := "{u+0116}" ; (Ė) E with dot above
153 dkRingDotAbove.item["f"] := "{u+1e1f}" ; (ḟ) f with dot above
154 dkRingDotAbove.item["F"] := "{u+1e1e}" ; (Ḟ) F with dot above
155 dkRingDotAbove.item["g"] := "{u+0121}" ; (ġ) g with dot above
156 dkRingDotAbove.item["G"] := "{u+0120}" ; (Ġ) G with dot above
157 dkRingDotAbove.item["h"] := "{u+1e23}" ; (ḣ) h with dot above
158 dkRingDotAbove.item["H"] := "{u+1e22}" ; (Ḣ) H with dot above
159 dkRingDotAbove.item["i"] := "{u+0131}" ; (ı) dotless i (Turkish, Azerbaijani)
160 dkRingDotAbove.item["I"] := "{u+0130}" ; (İ) I with dot above (Turkish, Azerbaijani)
161 dkRingDotAbove.item["j"] := "{u+0237}" ; (ȷ) dotless j
162 dkRingDotAbove.item["l"] := "{u+0140}" ; (ŀ) l with middle dot
163 dkRingDotAbove.item["L"] := "{u+013f}" ; (Ŀ) L with middle dot
164 dkRingDotAbove.item["m"] := "{u+1e41}" ; (ṁ) m with dot above
165 dkRingDotAbove.item["M"] := "{u+1e40}" ; (Ṁ) M with dot above
166 dkRingDotAbove.item["n"] := "{u+1e45}" ; (ṅ) n with dot above
167 dkRingDotAbove.item["N"] := "{u+1e44}" ; (Ṅ) N with dot above
168 dkRingDotAbove.item["o"] := "{u+022f}" ; (ȯ) o with dot above
169 dkRingDotAbove.item["O"] := "{u+022e}" ; (Ȯ) O with dot above
170 dkRingDotAbove.item["p"] := "{u+1e57}" ; (ṗ) p with dot above
171 dkRingDotAbove.item["P"] := "{u+1e56}" ; (Ṗ) P with dot above
172 dkRingDotAbove.item["r"] := "{u+1e59}" ; (ṙ) r with dot above
173 dkRingDotAbove.item["R"] := "{u+1e58}" ; (Ṙ) R with dot above
174 dkRingDotAbove.item["s"] := "{u+1e61}" ; (ṡ) s with dot above
175 dkRingDotAbove.item["S"] := "{u+1e60}" ; (Ṡ) S with dot above
176 dkRingDotAbove.item["t"] := "{u+1e6b}" ; (ṫ) t with dot above
177 dkRingDotAbove.item["T"] := "{u+1e6a}" ; (Ṫ) T with dot above
178 dkRingDotAbove.item["u"] := "{u+016f}" ; (ů) u with ring above
179 dkRingDotAbove.item["U"] := "{u+016e}" ; (Ů) U with ring above
180 dkRingDotAbove.item["w"] := "{u+1e87}" ; (ẇ) w with dot above
181 dkRingDotAbove.item["W"] := "{u+1e86}" ; (Ẇ) W with dot above
182 dkRingDotAbove.item[chr(0x00e5)] := "{u+1e98}" ; (å -> ẘ) w with ring above
183 dkRingDotAbove.item["x"] := "{u+1e8b}" ; (ẋ) x with dot above
184 dkRingDotAbove.item["X"] := "{u+1e8a}" ; (Ẋ) X with dot above
185 dkRingDotAbove.item["y"] := "{u+1e8f}" ; (ẏ) y with dot above
186 dkRingDotAbove.item["Y"] := "{u+1e8e}" ; (Ẏ) Y with dot above
187 dkRingDotAbove.item[chr(0x00ff)] := "{u+1e99}" ; (ÿ -> ẙ) y with ring above
188 dkRingDotAbove.item["z"] := "{u+017c}" ; (ż) z with dot above
189 dkRingDotAbove.item["Z"] := "{u+017b}" ; (Ż) Z with dot above
190 dkRingDotAbove.item["1"] := "{u+2199}" ; (↙) south west arrow
191 dkRingDotAbove.item["2"] := "{u+2193}" ; (↓) downwards arrow
192 dkRingDotAbove.item["3"] := "{u+2198}" ; (↘) south east arrow
193 dkRingDotAbove.item["4"] := "{u+2190}" ; (←) leftwards arrow
194 dkRingDotAbove.item["5"] := "{u+2195}" ; (↕) up down arrow
195 dkRingDotAbove.item["6"] := "{u+2192}" ; (→) rightwards arrow
196 dkRingDotAbove.item["7"] := "{u+2196}" ; (↖) north west arrow
197 dkRingDotAbove.item["8"] := "{u+2191}" ; (↑) upwards arrow
198 dkRingDotAbove.item["9"] := "{u+2197}" ; (↗) north east arrow
199 dkRingDotAbove.item["0"] := "{u+2194}" ; (↔) left right arrow
200 dkRingDotAbove.item["!"] := "{u+2199}" ; (↙) south west arrow
201 dkRingDotAbove.item["@"] := "{u+2193}" ; (↓) downwards arrow
202 dkRingDotAbove.item["#"] := "{u+2198}" ; (↘) south east arrow
203 dkRingDotAbove.item["$"] := "{u+2190}" ; (←) leftwards arrow
204 dkRingDotAbove.item["%"] := "{u+2195}" ; (↕) up down arrow
205 dkRingDotAbove.item["^"] := "{u+2192}" ; (→) rightwards arrow
206 dkRingDotAbove.item["&"] := "{u+2196}" ; (↖) north west arrow
207 dkRingDotAbove.item["*"] := "{u+2191}" ; (↑) upwards arrow
208 dkRingDotAbove.item["("] := "{u+2197}" ; (↗) north east arrow
209 dkRingDotAbove.item[")"] := "{u+2194}" ; (↔) left right arrow
210 dkRingDotAbove.item["-"] := "{u+21b2}" ; (↲) downwards arrow with tip leftwards
211 dkRingDotAbove.item["_"] := "{u+21b0}" ; (↰) upwards arrow with tip leftwards
212 dkRingDotAbove.item["="] := "{u+21b3}" ; (↳) downwards arrow with tip rightwards
213 dkRingDotAbove.item["+"] := "{u+21b1}" ; (↱) upwards arrow with tip rightwards
214 dkRingDotAbove.item["["] := "{u+21c4}" ; (⇄) rightwards arrow over leftwards arrow
215 dkRingDotAbove.item["]"] := "{u+21c5}" ; (⇅) upwards arrow leftwards of downwards arrow
216 dkRingDotAbove.item[";"] := "{u+21c6}" ; (⇆) leftwards arrow over rightwards arrow
217 dkRingDotAbove.item["'"] := "{u+21f5}" ; (⇵) downwards arrow leftwards of upwards arrow
218 dkRingDotAbove.item["/"] := "{u+21a8}" ; (↨) up down arrow with base
219 dkRingDotAbove.item[" "] := "{u+02d9}" ; (˙) dot above
222 ; Dead Key : Macron/Stroke
224 dkMacronStroke := ComObjCreate("Scripting.Dictionary")
225 dkMacronStroke.item["a"] := "{u+0101}" ; (ā) a with macron
226 dkMacronStroke.item["A"] := "{u+0100}" ; (Ā) A with macron
227 dkMacronStroke.item[chr(0x00e6)] := "{u+01e3}" ; (æ -> ǣ) ae with macron
228 dkMacronStroke.item[chr(0x00c6)] := "{u+01e2}" ; (Æ -> Ǣ) AE with macron
229 dkMacronStroke.item["b"] := "{u+0180}" ; (ƀ) b with stroke
230 dkMacronStroke.item["B"] := "{u+0243}" ; (Ƀ) B with stroke
231 dkMacronStroke.item["d"] := "{u+0111}" ; (đ) d with stroke
232 dkMacronStroke.item["D"] := "{u+0110}" ; (Đ) D with stroke
233 dkMacronStroke.item["e"] := "{u+0113}" ; (ē) e with macron
234 dkMacronStroke.item["E"] := "{u+0112}" ; (Ē) E with macron
235 dkMacronStroke.item["g"] := "{u+01e5}" ; (ǥ) g with stroke (Skolt Sami)
236 dkMacronStroke.item["G"] := "{u+01e4}" ; (Ǥ) G with stroke (Skolt Sami)
237 dkMacronStroke.item[chr(0x00e9)] := "{u+1e21}" ; (é -> ḡ) g with macron
238 dkMacronStroke.item[chr(0x00c9)] := "{u+1e20}" ; (É -> Ḡ) G with macron
239 dkMacronStroke.item["h"] := "{u+0127}" ; (ħ) h with stroke (Maltese)
240 dkMacronStroke.item["H"] := "{u+0126}" ; (Ħ) H with stroke (Maltese)
241 dkMacronStroke.item["i"] := "{u+012b}" ; (ī) i with macron
242 dkMacronStroke.item["I"] := "{u+012a}" ; (Ī) I with macron
243 dkMacronStroke.item[chr(0x00ef)] := "{u+0268}" ; (ï -> ɨ) i with stroke
244 dkMacronStroke.item[chr(0x00cf)] := "{u+0197}" ; (Ï -> Ɨ) I with stroke
245 dkMacronStroke.item["j"] := "{u+0249}" ; (ɉ) j with stroke
246 dkMacronStroke.item["J"] := "{u+0248}" ; (Ɉ) J with stroke
247 dkMacronStroke.item["l"] := "{u+0142}" ; (ł) l with stroke
248 dkMacronStroke.item["L"] := "{u+0141}" ; (Ł) L with stroke
249 dkMacronStroke.item[chr(0x00f8)] := "{u+1e3b}" ; (ø -> ḻ) l with line below
250 dkMacronStroke.item[chr(0x00d8)] := "{u+1e3a}" ; (Ø -> Ḻ) L with line below
251 dkMacronStroke.item["o"] := "{u+014d}" ; (ō) o with macron
252 dkMacronStroke.item["O"] := "{u+014c}" ; (Ō) O with macron
253 dkMacronStroke.item[chr(0x00f6)] := "{u+01ed}" ; (ö -> ǭ) o with ogonek and macron
254 dkMacronStroke.item[chr(0x00d6)] := "{u+01ec}" ; (Ö -> Ǭ) O with ogonek and macron
255 dkMacronStroke.item["p"] := "{u+1d7d}" ; (ᵽ) p with stroke
256 dkMacronStroke.item["P"] := "{u+2c63}" ; (Ᵽ) P with stroke
257 dkMacronStroke.item["r"] := "{u+024d}" ; (ɍ) r with stroke
258 dkMacronStroke.item["R"] := "{u+024c}" ; (Ɍ) R with stroke
259 dkMacronStroke.item["t"] := "{u+0167}" ; (ŧ) t with stroke
260 dkMacronStroke.item["T"] := "{u+0166}" ; (Ŧ) T with stroke
261 dkMacronStroke.item["u"] := "{u+016b}" ; (ū) u with macron
262 dkMacronStroke.item["U"] := "{u+016a}" ; (Ū) U with macron
263 dkMacronStroke.item[chr(0x00fc)] := "{u+0289}" ; (ü -> ʉ) u with bar
264 dkMacronStroke.item[chr(0x00dc)] := "{u+0244}" ; (Ü -> Ʉ) U with bar
265 dkMacronStroke.item["y"] := "{u+0233}" ; (ȳ) y with macron
266 dkMacronStroke.item["Y"] := "{u+0232}" ; (Ȳ) Y with macron
267 dkMacronStroke.item[chr(0x00ff)] := "{u+024f}" ; (ÿ -> ɏ) y with stroke
268 dkMacronStroke.item[chr(0x0178)] := "{u+024c}" ; (Ÿ -> Ɏ) Y with stroke
269 dkMacronStroke.item["z"] := "{u+01b6}" ; (ƶ) z with stroke
270 dkMacronStroke.item["Z"] := "{u+01b5}" ; (Ƶ) Z with stroke
271 dkMacronStroke.item[" "] := "{u+00af}" ; (¯) macron
274 ; Dead Key : Cedilla/Ogonek
276 dkCedillaOgonek := ComObjCreate("Scripting.Dictionary")
277 dkCedillaOgonek.item["a"] := "{u+0105}" ; (ą) a with ogonek
278 dkCedillaOgonek.item["A"] := "{u+0104}" ; (Ą) A with ogonek
279 dkCedillaOgonek.item["c"] := "{u+00e7}" ; (ç) c with cedilla
280 dkCedillaOgonek.item["C"] := "{u+00c7}" ; (Ç) C with cedilla
281 dkCedillaOgonek.item["d"] := "{u+1e11}" ; (ḑ) d with cedilla
282 dkCedillaOgonek.item["D"] := "{u+1e10}" ; (Ḑ) D with cedilla
283 dkCedillaOgonek.item["e"] := "{u+0119}" ; (ę) e with ogonek
284 dkCedillaOgonek.item["E"] := "{u+0118}" ; (Ę) E with ogonek
285 dkCedillaOgonek.item[chr(0x00eb)] := "{u+0229}" ; (ë -> ȩ) e with cedilla
286 dkCedillaOgonek.item[chr(0x00cb)] := "{u+0228}" ; (Ë -> Ȩ) E with cedilla
287 dkCedillaOgonek.item["g"] := "{u+0123}" ; (ģ) g with cedilla
288 dkCedillaOgonek.item["G"] := "{u+0122}" ; (Ģ) G with cedilla
289 dkCedillaOgonek.item["h"] := "{u+1e29}" ; (ḩ) h with cedilla
290 dkCedillaOgonek.item["H"] := "{u+1e28}" ; (Ḩ) H with cedilla
291 dkCedillaOgonek.item["i"] := "{u+012f}" ; (į) i with ogonek
292 dkCedillaOgonek.item["I"] := "{u+012e}" ; (Į) I with ogonek
293 dkCedillaOgonek.item["k"] := "{u+0137}" ; (ķ) k with cedilla
294 dkCedillaOgonek.item["K"] := "{u+0136}" ; (Ķ) K with cedilla
295 dkCedillaOgonek.item["l"] := "{u+013c}" ; (ļ) l with cedilla
296 dkCedillaOgonek.item["L"] := "{u+013b}" ; (Ļ) L with cedilla
297 dkCedillaOgonek.item["n"] := "{u+0146}" ; (ņ) n with cedilla
298 dkCedillaOgonek.item["N"] := "{u+0145}" ; (Ņ) N with cedilla
299 dkCedillaOgonek.item["o"] := "{u+01eb}" ; (ǫ) o with ogonek
300 dkCedillaOgonek.item["O"] := "{u+01ea}" ; (Ǫ) O with ogonek
301 dkCedillaOgonek.item[chr(0x00f6)] := "{u+01ed}" ; (ö -> ǭ) o with ogonek and macron
302 dkCedillaOgonek.item[chr(0x00d6)] := "{u+01ec}" ; (Ö -> Ǭ) O with ogonek and macron
303 dkCedillaOgonek.item["r"] := "{u+0157}" ; (ŗ) r with cedilla
304 dkCedillaOgonek.item["R"] := "{u+0156}" ; (Ŗ) R with cedilla
305 dkCedillaOgonek.item["s"] := "{u+015f}" ; (ş) s with cedilla
306 dkCedillaOgonek.item["S"] := "{u+015e}" ; (Ş) S with cedilla
307 dkCedillaOgonek.item["t"] := "{u+0163}" ; (ţ) t with cedilla
308 dkCedillaOgonek.item["T"] := "{u+0162}" ; (Ţ) T with cedilla
309 dkCedillaOgonek.item["u"] := "{u+0173}" ; (ų) u with ogonek
310 dkCedillaOgonek.item["U"] := "{u+0172}" ; (Ų) U with ogonek
311 dkCedillaOgonek.item["1"] := "{u+2013}" ; (–) en dash
312 dkCedillaOgonek.item["2"] := "{u+2014}" ; (—) em dash
313 dkCedillaOgonek.item["3"] := "{u+2015}" ; (―) horizontal bar
314 dkCedillaOgonek.item["4"] := "{u+2010}" ; (‐) hyphen
315 dkCedillaOgonek.item["9"] := "{u+2012}" ; (‒) figure dash
316 dkCedillaOgonek.item["0"] := "{u+00ad}" ; () soft hyphen
317 dkCedillaOgonek.item["!"] := "{u+2013}" ; (–) en dash
318 dkCedillaOgonek.item["@"] := "{u+2014}" ; (—) em dash
319 dkCedillaOgonek.item["#"] := "{u+2015}" ; (―) horizontal bar
320 dkCedillaOgonek.item["$"] := "{u+2010}" ; (‐) hyphen
321 dkCedillaOgonek.item["("] := "{u+2012}" ; (‒) figure dash
322 dkCedillaOgonek.item[")"] := "{u+00ad}" ; () soft hyphen
323 dkCedillaOgonek.item["-"] := "{u+2011}" ; (‑) non-breaking hyphen
324 dkCedillaOgonek.item["."] := "{u+02db}" ; (˛) ogonek
325 dkCedillaOgonek.item[" "] := "{u+00b8}" ; (¸) cedilla
328 ; Dead Key : Breve/Special
330 dkBreveSpecial := ComObjCreate("Scripting.Dictionary")
331 dkBreveSpecial.item["a"] := "{u+0103}" ; (ă) a with breve
332 dkBreveSpecial.item["A"] := "{u+0102}" ; (Ă) A with breve
333 dkBreveSpecial.item[chr(0x00e4)] := "{u+0252}" ; (ä -> ɒ) latin small letter turned alpha
334 dkBreveSpecial.item[chr(0x00c4)] := "{u+2c70}" ; (Ä -> Ɒ) latin capital letter turned alpha
335 dkBreveSpecial.item["c"] := "{u+0188}" ; (ƈ) c with hook
336 dkBreveSpecial.item["C"] := "{u+0187}" ; (Ƈ) C with hook
337 dkBreveSpecial.item["d"] := "{u+0256}" ; (ɖ) small letter d with tail
338 dkBreveSpecial.item["D"] := "{u+0189}" ; (Ɖ) capital letter African D
339 dkBreveSpecial.item["e"] := "{u+0115}" ; (ĕ) e with breve
340 dkBreveSpecial.item["E"] := "{u+0114}" ; (Ĕ) E with breve
341 dkBreveSpecial.item[chr(0x00eb)] := "{u+01dd}" ; (ë -> ǝ) small turned e
342 dkBreveSpecial.item[chr(0x00cb)] := "{u+018e}" ; (Ë -> Ǝ) capital reversed E
343 dkBreveSpecial.item["f"] := "{u+0259}" ; (ə) small letter schwa (Azerbaijani)
344 dkBreveSpecial.item["F"] := "{u+018f}" ; (Ə) capital letter schwa (Azerbaijani)
345 dkBreveSpecial.item["g"] := "{u+011f}" ; (ğ) g with breve
346 dkBreveSpecial.item["G"] := "{u+011e}" ; (Ğ) G with breve
347 dkBreveSpecial.item[chr(0x00e9)] := "{u+0263}" ; (é -> ɣ) latin small gamma
348 dkBreveSpecial.item[chr(0x00c9)] := "{u+0194}" ; (É -> Ɣ) latin capital gamma
349 dkBreveSpecial.item["i"] := "{u+012d}" ; (ĭ) i with breve
350 dkBreveSpecial.item["I"] := "{u+012c}" ; (Ĭ) I with breve
351 dkBreveSpecial.item["j"] := "{u+0133}" ; (ij) ligature ij
352 dkBreveSpecial.item["J"] := "{u+0132}" ; (IJ) ligature IJ
353 dkBreveSpecial.item["k"] := "{u+0138}" ; (ĸ) small letter kra
354 dkBreveSpecial.item["m"] := "{u+0271}" ; (ɱ) m with hook
355 dkBreveSpecial.item["M"] := "{u+2c6e}" ; (Ɱ) M with hook
356 dkBreveSpecial.item["n"] := "{u+014b}" ; (ŋ) small letter eng(ma)
357 dkBreveSpecial.item["N"] := "{u+014a}" ; (Ŋ) capital letter eng(ma)
358 dkBreveSpecial.item[chr(0x00f1)] := "{u+0272}" ; (ñ -> ɲ) n with left hook
359 dkBreveSpecial.item[chr(0x00d1)] := "{u+019d}" ; (Ñ -> Ɲ) N with left hook
360 dkBreveSpecial.item["o"] := "{u+014f}" ; (ŏ) o with breve
361 dkBreveSpecial.item["O"] := "{u+014e}" ; (Ŏ) O with breve
362 dkBreveSpecial.item[chr(0x00f6)] := "{u+0254}" ; (ö -> ɔ) small open o
363 dkBreveSpecial.item[chr(0x00d6)] := "{u+0186}" ; (Ö -> Ɔ) capital open O
364 dkBreveSpecial.item["p"] := "{u+1e55}" ; (ṕ) p with acute
365 dkBreveSpecial.item["P"] := "{u+1e54}" ; (Ṕ) P with acute
366 dkBreveSpecial.item["s"] := "{u+0219}" ; (ș) s with comma below (Romanian)
367 dkBreveSpecial.item["S"] := "{u+0218}" ; (Ș) S with comma below (Romanian)
368 dkBreveSpecial.item[chr(0x00df)] := "{u+1e9e}" ; (ß -> ẞ) capital sharp S (capital Eszett)
369 dkBreveSpecial.item["t"] := "{u+021b}" ; (ț) t with comma below (Romanian)
370 dkBreveSpecial.item["T"] := "{u+021a}" ; (Ț) T with comma below (Romanian)
371 dkBreveSpecial.item["u"] := "{u+016d}" ; (ŭ) u with breve
372 dkBreveSpecial.item["U"] := "{u+016c}" ; (Ŭ) U with breve
373 dkBreveSpecial.item["v"] := "{u+028a}" ; (ʊ) latin small letter upsilon
374 dkBreveSpecial.item["V"] := "{u+01b1}" ; (Ʊ) latin capital letter upsilon
375 dkBreveSpecial.item["w"] := "{u+01bf}" ; (ƿ) small letter wynn
376 dkBreveSpecial.item["W"] := "{u+01f7}" ; (Ƿ) capital letter wynn
377 dkBreveSpecial.item[chr(0x00e5)] := "{u+2c73}" ; (å -> ⱳ) w with hook
378 dkBreveSpecial.item[chr(0x00c5)] := "{u+2c72}" ; (Å -> Ⱳ) W with hook
379 dkBreveSpecial.item["y"] := "{u+021d}" ; (ȝ) small letter yogh
380 dkBreveSpecial.item["Y"] := "{u+021c}" ; (Ȝ) capital letter yogh
381 dkBreveSpecial.item["3"] := "{u+0292}" ; (ʒ) small letter ezh
382 dkBreveSpecial.item["#"] := "{u+01b7}" ; (Ʒ) capital letter ezh
383 dkBreveSpecial.item[" "] := "{u+02d8}" ; (˘) breve
386 ; Dead Key : Acute Accent
388 dkAcuteAccent := ComObjCreate("Scripting.Dictionary")
389 dkAcuteAccent.item["a"] := "{u+00e1}" ; (á) a with acute
390 dkAcuteAccent.item["A"] := "{u+00c1}" ; (Á) A with acute
391 dkAcuteAccent.item[chr(0x00e4)] := "{u+0251}" ; (ä -> ɑ) latin small letter alpha
392 dkAcuteAccent.item[chr(0x00c4)] := "{u+2c6d}" ; (Ä -> Ɑ) latin capital letter alpha
393 dkAcuteAccent.item["b"] := "{u+0253}" ; (ɓ) b with hook
394 dkAcuteAccent.item["B"] := "{u+0181}" ; (Ɓ) B with hook
395 dkAcuteAccent.item["c"] := "{u+0107}" ; (ć) c with acute
396 dkAcuteAccent.item["C"] := "{u+0106}" ; (Ć) C with acute
397 dkAcuteAccent.item[chr(0x00e7)] := "{u+1e09}" ; (ç -> ḉ) c with cedilla and acute
398 dkAcuteAccent.item[chr(0x00c7)] := "{u+1e08}" ; (Ç -> Ḉ) C with cedilla and acute
399 dkAcuteAccent.item["d"] := "{u+0257}" ; (ɗ) d with hook
400 dkAcuteAccent.item["D"] := "{u+018a}" ; (Ɗ) D with hook
401 dkAcuteAccent.item["e"] := "{u+00e9}" ; (é) e with acute
402 dkAcuteAccent.item["E"] := "{u+00c9}" ; (É) E with acute
403 dkAcuteAccent.item[chr(0x00eb)] := "{u+025b}" ; (ë -> ɛ) small open e (latin small epsilon)
404 dkAcuteAccent.item[chr(0x00cb)] := "{u+0190}" ; (Ë -> Ɛ) capital open E (latin capital epsilon)
405 dkAcuteAccent.item["f"] := "{u+0192}" ; (ƒ) f with hook
406 dkAcuteAccent.item["F"] := "{u+0191}" ; (Ƒ) F with hook
407 dkAcuteAccent.item["g"] := "{u+01f5}" ; (ǵ) g with acute
408 dkAcuteAccent.item["G"] := "{u+01f4}" ; (Ǵ) G with acute
409 dkAcuteAccent.item[chr(0x00e9)] := "{u+0260}" ; (é -> ɠ) g with hook
410 dkAcuteAccent.item[chr(0x00c9)] := "{u+0193}" ; (É -> Ɠ) G with hook
411 dkAcuteAccent.item["h"] := "{u+0266}" ; (ɦ) h with hook
412 dkAcuteAccent.item["H"] := "{u+a7aa}" ; (Ɦ) H with hook
413 dkAcuteAccent.item[chr(0x00f9)] := "{u+a727}" ; (ù -> ꜧ) small letter heng
414 dkAcuteAccent.item[chr(0x00d9)] := "{u+a726}" ; (Ù -> Ꜧ) capital letter heng
415 dkAcuteAccent.item["i"] := "{u+00ed}" ; (í) i with acute
416 dkAcuteAccent.item["I"] := "{u+00cd}" ; (Í) I with acute
417 dkAcuteAccent.item["j"] := "{u+0133}" ; (ij) ligature ij
418 dkAcuteAccent.item["J"] := "{u+0132}" ; (IJ) ligature IJ
419 dkAcuteAccent.item["k"] := "{u+0199}" ; (ƙ) k with hook
420 dkAcuteAccent.item["K"] := "{u+0198}" ; (Ƙ) K with hook
421 dkAcuteAccent.item[chr(0x0153)] := "{u+1e31}" ; (œ -> ḱ) k with acute
422 dkAcuteAccent.item[chr(0x0152)] := "{u+1e30}" ; (Œ -> Ḱ) K with acute
423 dkAcuteAccent.item["l"] := "{u+013a}" ; (ĺ) l with acute
424 dkAcuteAccent.item["L"] := "{u+0139}" ; (Ĺ) L with acute
425 dkAcuteAccent.item["m"] := "{u+1e3f}" ; (ḿ) m with acute
426 dkAcuteAccent.item["M"] := "{u+1e3e}" ; (Ḿ) M with acute
427 dkAcuteAccent.item["n"] := "{u+0144}" ; (ń) n with acute
428 dkAcuteAccent.item["N"] := "{u+0143}" ; (Ń) N with acute
429 dkAcuteAccent.item["o"] := "{u+00f3}" ; (ó) o with acute
430 dkAcuteAccent.item["O"] := "{u+00d3}" ; (Ó) O with acute
431 dkAcuteAccent.item[chr(0x00f6)] := "{u+0151}" ; (ö -> ő) o with double acute
432 dkAcuteAccent.item[chr(0x00d6)] := "{u+0150}" ; (Ö -> Ő) O with double acute
433 dkAcuteAccent.item["p"] := "{u+01a5}" ; (ƥ) p with hook
434 dkAcuteAccent.item["P"] := "{u+01a4}" ; (Ƥ) P with hook
435 dkAcuteAccent.item["q"] := "{u+024b}" ; (ɋ) q with hook tail
436 dkAcuteAccent.item["Q"] := "{u+024a}" ; (Ɋ) Q with hook tail
437 dkAcuteAccent.item["r"] := "{u+0155}" ; (ŕ) r with acute
438 dkAcuteAccent.item["R"] := "{u+0154}" ; (Ŕ) R with acute
439 dkAcuteAccent.item[chr(0x00fd)] := "{u+027d}" ; (ý -> ɽ) r with tail
440 dkAcuteAccent.item[chr(0x00dd)] := "{u+2c64}" ; (Ý -> Ɽ) R with tail
441 dkAcuteAccent.item["s"] := "{u+015b}" ; (ś) s with acute
442 dkAcuteAccent.item["S"] := "{u+015a}" ; (Ś) S with acute
443 dkAcuteAccent.item[chr(0x00df)] := "{u+1e9e}" ; (ß -> ẞ) capital sharp S (capital Eszett)
444 dkAcuteAccent.item["t"] := "{u+01ad}" ; (ƭ) t with hook
445 dkAcuteAccent.item["T"] := "{u+01ac}" ; (Ƭ) T with hook
446 dkAcuteAccent.item["u"] := "{u+00fa}" ; (ú) u with acute
447 dkAcuteAccent.item["U"] := "{u+00da}" ; (Ú) U with acute
448 dkAcuteAccent.item[chr(0x00fc)] := "{u+0171}" ; (ü -> ű) u with double acute
449 dkAcuteAccent.item[chr(0x00dc)] := "{u+0170}" ; (Ü -> Ű) U with double acute
450 dkAcuteAccent.item["v"] := "{u+028b}" ; (ʋ) v with hook
451 dkAcuteAccent.item["V"] := "{u+01b2}" ; (Ʋ) V with hook
452 dkAcuteAccent.item[chr(0x00ec)] := "{u+028c}" ; (ì -> ʌ) latin small letter turned v
453 dkAcuteAccent.item[chr(0x00cc)] := "{u+0245}" ; (Ì -> Ʌ) latin capital letter turned V
454 dkAcuteAccent.item["w"] := "{u+1e83}" ; (ẃ) w with acute
455 dkAcuteAccent.item["W"] := "{u+1e82}" ; (Ẃ) W with acute
456 dkAcuteAccent.item["y"] := "{u+00fd}" ; (ý) y with acute
457 dkAcuteAccent.item["Y"] := "{u+00dd}" ; (Ý) Y with acute
458 dkAcuteAccent.item[chr(0x00ff)] := "{u+01b4}" ; (ÿ -> ƴ) y with hook
459 dkAcuteAccent.item[chr(0x0178)] := "{u+01b3}" ; (Ÿ -> Ƴ) Y with hook
460 dkAcuteAccent.item["z"] := "{u+017a}" ; (ź) z with acute
461 dkAcuteAccent.item["Z"] := "{u+0179}" ; (Ź) Z with acute
462 dkAcuteAccent.item[chr(0x00e0)] := "{u+0225}" ; (à -> ȥ) z with hook
463 dkAcuteAccent.item[chr(0x00c0)] := "{u+0224}" ; (À -> Ȥ) Z with hook
464 dkAcuteAccent.item[chr(0x00e5)] := "{u+01fb}" ; (å -> ǻ) a with ring above and acute
465 dkAcuteAccent.item[chr(0x00c5)] := "{u+01fa}" ; (Å -> Ǻ) A with ring above and acute
466 dkAcuteAccent.item[chr(0x00e6)] := "{u+01fd}" ; (æ -> ǽ) ae with acute
467 dkAcuteAccent.item[chr(0x00c6)] := "{u+01fc}" ; (Æ -> Ǽ) AE with acute
468 dkAcuteAccent.item[chr(0x00f8)] := "{u+01ff}" ; (ø -> ǿ) o with stroke and acute
469 dkAcuteAccent.item[chr(0x00d8)] := "{u+01fe}" ; (Ø -> Ǿ) O with stroke and acute
470 dkAcuteAccent.item["2"] := "{u+266b}" ; (♫) beamed eighth notes
471 dkAcuteAccent.item["3"] := "{u+2042}" ; (⁂) asterism
472 dkAcuteAccent.item["4"] := "{u+2605}" ; (★) black star
473 dkAcuteAccent.item["5"] := "{u+2606}" ; (☆) white star
474 dkAcuteAccent.item["6"] := "{u+273d}" ; (✽) heavy teardrop-spoked asterisk
475 dkAcuteAccent.item["7"] := "{u+273b}" ; (✻) teardrop-spoked asterisk
476 dkAcuteAccent.item["8"] := "{u+266a}" ; (♪) eighth note
477 dkAcuteAccent.item["@"] := "{u+266b}" ; (♫) beamed eighth notes
478 dkAcuteAccent.item["#"] := "{u+2042}" ; (⁂) asterism
479 dkAcuteAccent.item["$"] := "{u+2605}" ; (★) black star
480 dkAcuteAccent.item["%"] := "{u+2606}" ; (☆) white star
481 dkAcuteAccent.item["^"] := "{u+273d}" ; (✽) heavy teardrop-spoked asterisk
482 dkAcuteAccent.item["&"] := "{u+273b}" ; (✻) teardrop-spoked asterisk
483 dkAcuteAccent.item["*"] := "{u+266a}" ; (♪) eighth note
484 dkAcuteAccent.item[" "] := "{u+00b4}" ; (´) acute accent
487 ; Dead Key : Diaeresis
489 dkDiaeresis := ComObjCreate("Scripting.Dictionary")
490 dkDiaeresis.item["a"] := "{u+00e4}" ; (ä) a with diaeresis
491 dkDiaeresis.item["A"] := "{u+00c4}" ; (Ä) A with diaeresis
492 dkDiaeresis.item["e"] := "{u+00eb}" ; (ë) e with diaeresis
493 dkDiaeresis.item["E"] := "{u+00cb}" ; (Ë) E with diaeresis
494 dkDiaeresis.item["h"] := "{u+1e27}" ; (ḧ) h with diaeresis
495 dkDiaeresis.item["H"] := "{u+1e26}" ; (Ḧ) H with diaeresis
496 dkDiaeresis.item["i"] := "{u+00ef}" ; (ï) i with diaeresis
497 dkDiaeresis.item["I"] := "{u+00cf}" ; (Ï) I with diaeresis
498 dkDiaeresis.item["o"] := "{u+00f6}" ; (ö) o with diaeresis
499 dkDiaeresis.item["O"] := "{u+00d6}" ; (Ö) O with diaeresis
500 dkDiaeresis.item["t"] := "{u+1e97}" ; (ẗ) t with diaeresis
501 dkDiaeresis.item["u"] := "{u+00fc}" ; (ü) u with diaeresis
502 dkDiaeresis.item["U"] := "{u+00dc}" ; (Ü) U with diaeresis
503 dkDiaeresis.item["w"] := "{u+1e85}" ; (ẅ) w with diaeresis
504 dkDiaeresis.item["W"] := "{u+1e84}" ; (Ẅ) W with diaeresis
505 dkDiaeresis.item["x"] := "{u+1e8d}" ; (ẍ) x with diaeresis
506 dkDiaeresis.item["X"] := "{u+1e8c}" ; (Ẍ) X with diaeresis
507 dkDiaeresis.item["y"] := "{u+00ff}" ; (ÿ) y with diaeresis
508 dkDiaeresis.item["Y"] := "{u+0178}" ; (Ÿ) Y with diaeresis
509 dkDiaeresis.item["s"] := "{u+0283}" ; (ʃ) small letter esh
510 dkDiaeresis.item["S"] := "{u+01a9}" ; (Ʃ) capital letter esh
511 dkDiaeresis.item[chr(0x00df)] := "{u+017f}" ; (ß -> ſ) small long s
512 dkDiaeresis.item[" "] := "{u+00a8}" ; (¨) diaeresis
515 ; Dead Key : Grave Accent
517 dkGraveAccent := ComObjCreate("Scripting.Dictionary")
518 dkGraveAccent.item["a"] := "{u+00e0}" ; (à) a with grave
519 dkGraveAccent.item["A"] := "{u+00c0}" ; (À) A with grave
520 dkGraveAccent.item["e"] := "{u+00e8}" ; (è) e with grave
521 dkGraveAccent.item["E"] := "{u+00c8}" ; (È) E with grave
522 dkGraveAccent.item["i"] := "{u+00ec}" ; (ì) i with grave
523 dkGraveAccent.item["I"] := "{u+00cc}" ; (Ì) I with grave
524 dkGraveAccent.item["n"] := "{u+01f9}" ; (ǹ) n with grave
525 dkGraveAccent.item["N"] := "{u+01f8}" ; (Ǹ) N with grave
526 dkGraveAccent.item["o"] := "{u+00f2}" ; (ò) o with grave
527 dkGraveAccent.item["O"] := "{u+00d2}" ; (Ò) O with grave
528 dkGraveAccent.item["u"] := "{u+00f9}" ; (ù) u with grave
529 dkGraveAccent.item["U"] := "{u+00d9}" ; (Ù) U with grave
530 dkGraveAccent.item["w"] := "{u+1e81}" ; (ẁ) w with grave
531 dkGraveAccent.item["W"] := "{u+1e80}" ; (Ẁ) W with grave
532 dkGraveAccent.item["y"] := "{u+1ef3}" ; (ỳ) y with grave
533 dkGraveAccent.item["Y"] := "{u+1ef2}" ; (Ỳ) Y with grave
534 dkGraveAccent.item["c"] := "{u+2663}" ; (♣) black club suit
535 dkGraveAccent.item["C"] := "{u+2667}" ; (♧) white club suit
536 dkGraveAccent.item["d"] := "{u+2666}" ; (♦) black diamond suit
537 dkGraveAccent.item["D"] := "{u+2662}" ; (♢) white diamond suit
538 dkGraveAccent.item["h"] := "{u+2665}" ; (♥) black heart suit
539 dkGraveAccent.item["H"] := "{u+2661}" ; (♡) white heart suit
540 dkGraveAccent.item["s"] := "{u+2660}" ; (♠) black spade suit
541 dkGraveAccent.item["S"] := "{u+2664}" ; (♤) white spade suit
542 dkGraveAccent.item["1"] := "{u+2002}" ; en space
543 dkGraveAccent.item["2"] := "{u+2003}" ; em space
544 dkGraveAccent.item["3"] := "{u+2004}" ; three-per-em space
545 dkGraveAccent.item["4"] := "{u+2005}" ; four-per-em space
546 dkGraveAccent.item["5"] := "{u+2008}" ; punctuation space
547 dkGraveAccent.item["6"] := "{u+2006}" ; six-per-em space
548 dkGraveAccent.item["7"] := "{u+2009}" ; thin space
549 dkGraveAccent.item["8"] := "{u+200a}" ; hair space
550 dkGraveAccent.item["9"] := "{u+2007}" ; figure space
551 dkGraveAccent.item["0"] := "{u+200b}" ; zero-width space
552 dkGraveAccent.item["!"] := "{u+2002}" ; en space
553 dkGraveAccent.item["@"] := "{u+2003}" ; em space
554 dkGraveAccent.item["#"] := "{u+2004}" ; three-per-em space
555 dkGraveAccent.item["$"] := "{u+2005}" ; four-per-em space
556 dkGraveAccent.item["%"] := "{u+2008}" ; punctuation space
557 dkGraveAccent.item["^"] := "{u+2006}" ; six-per-em space
558 dkGraveAccent.item["&"] := "{u+2009}" ; thin space
559 dkGraveAccent.item["*"] := "{u+200a}" ; hair space
560 dkGraveAccent.item["("] := "{u+2007}" ; figure space
561 dkGraveAccent.item[")"] := "{u+200b}" ; zero-width space
562 dkGraveAccent.item["-"] := "{u+00a0}" ; non-breaking space
563 dkGraveAccent.item["="] := "{u+202f}" ; narrow no-break space
564 dkGraveAccent.item[" "] := "``" ; grave accent
569 dkTilde := ComObjCreate("Scripting.Dictionary")
570 dkTilde.item["a"] := "{u+00e3}" ; (ã) a with tilde
571 dkTilde.item["A"] := "{u+00c3}" ; (Ã) A with tilde
572 dkTilde.item["e"] := "{u+1ebd}" ; (ẽ) e with tilde
573 dkTilde.item["E"] := "{u+1ebc}" ; (Ẽ) E with tilde
574 dkTilde.item["i"] := "{u+0129}" ; (ĩ) i with tilde
575 dkTilde.item["I"] := "{u+0128}" ; (Ĩ) I with tilde
576 dkTilde.item["n"] := "{u+00f1}" ; (ñ) n with tilde
577 dkTilde.item["N"] := "{u+00d1}" ; (Ñ) N with tilde
578 dkTilde.item["o"] := "{u+00f5}" ; (õ) o with tilde
579 dkTilde.item["O"] := "{u+00d5}" ; (Õ) O with tilde
580 dkTilde.item["u"] := "{u+0169}" ; (ũ) u with tilde
581 dkTilde.item["U"] := "{u+0168}" ; (Ũ) U with tilde
582 dkTilde.item["v"] := "{u+1e7d}" ; (ṽ) v with tilde
583 dkTilde.item["V"] := "{u+1e7c}" ; (Ṽ) V with tilde
584 dkTilde.item["y"] := "{u+1ef9}" ; (ỹ) y with tilde
585 dkTilde.item["Y"] := "{u+1ef8}" ; (Ỹ) Y with tilde
586 dkTilde.item["g"] := "{u+ab36}" ; (ꬶ) cross-tailed g
587 dkTilde.item["h"] := "{u+0267}" ; (ɧ) small letter heng with hook
588 dkTilde.item["1"] := "{u+2000}" ; en quad
589 dkTilde.item["2"] := "{u+2001}" ; em quad
590 dkTilde.item["!"] := "{u+2000}" ; en quad
591 dkTilde.item["@"] := "{u+2001}" ; em quad
592 dkTilde.item[" "] := "~" ; tilde
595 ; Dead Key : Not Sign
597 dkNotSign := ComObjCreate("Scripting.Dictionary")
598 dkNotSign.item["a"] := "{u+00aa}" ; (ª) feminine ordinal indicator (Spanish, Portuguese, Italian, Galician)
599 dkNotSign.item["A"] := "{u+00aa}" ; (ª) feminine ordinal indicator (Spanish, Portuguese, Italian, Galician)
600 dkNotSign.item[chr(0x00e4)] := "{u+214d}" ; (ä -> ⅍) aktieselskab
601 dkNotSign.item[chr(0x00c4)] := "{u+214d}" ; (Ä -> ⅍) aktieselskab
602 dkNotSign.item["b"] := "{u+2610}" ; (☐) ballot box
603 dkNotSign.item["B"] := "{u+2612}" ; (☒) ballot box with x
604 dkNotSign.item["c"] := "{u+00a4}" ; (¤) currency sign
605 dkNotSign.item["C"] := "{u+00a4}" ; (¤) currency sign
606 dkNotSign.item[chr(0x00e7)] := "{u+2105}" ; (ç -> ℅) care of
607 dkNotSign.item[chr(0x00c7)] := "{u+2105}" ; (Ç -> ℅) care of
608 dkNotSign.item["d"] := "{u+22c4}" ; (⋄) diamond operator
609 dkNotSign.item["D"] := "{u+22c4}" ; (⋄) diamond operator
610 dkNotSign.item["e"] := "{u+212e}" ; (℮) estimated symbol
611 dkNotSign.item["E"] := "{u+212e}" ; (℮) estimated symbol
612 dkNotSign.item["f"] := "{u+2640}" ; (♀) Venus symbol (female)
613 dkNotSign.item["F"] := "{u+2640}" ; (♀) Venus symbol (female)
614 dkNotSign.item["h"] := "{u+2766}" ; (❦) floral heart
615 dkNotSign.item["H"] := "{u+2767}" ; (❧) rotated floral heart bullet
616 dkNotSign.item["l"] := "{u+2113}" ; (ℓ) script small l
617 dkNotSign.item["L"] := "{u+2113}" ; (ℓ) script small l
618 dkNotSign.item["m"] := "{u+2642}" ; (♂) Mars symbol (male)
619 dkNotSign.item["M"] := "{u+2642}" ; (♂) Mars symbol (male)
620 dkNotSign.item["n"] := "{u+00ac}" ; (¬) not sign
621 dkNotSign.item["N"] := "{u+00ac}" ; (¬) not sign
622 dkNotSign.item["o"] := "{u+00ba}" ; (º) masculine ordinal indicator (Spanish, Portuguese, Italian, Galician)
623 dkNotSign.item["O"] := "{u+00ba}" ; (º) masculine ordinal indicator (Spanish, Portuguese, Italian, Galician)
624 dkNotSign.item[chr(0x00f6)] := "{u+2126}" ; (ö -> Ω) ohm sign (backwards compatibility)
625 dkNotSign.item[chr(0x00d6)] := "{u+2126}" ; (Ö -> Ω) ohm sign (backwards compatibility)
626 dkNotSign.item["p"] := "{u+2117}" ; (℗) sound recording copyright
627 dkNotSign.item["P"] := "{u+2117}" ; (℗) sound recording copyright
628 dkNotSign.item["q"] := "{u+201a}" ; (‚) single low-9 quotation mark
629 dkNotSign.item["Q"] := "{u+201a}" ; (‚) single low-9 quotation mark
630 dkNotSign.item["r"] := "{u+00ae}" ; (®) registered sign
631 dkNotSign.item["R"] := "{u+2619}" ; (☙) reversed rotated floral heart bullet
632 dkNotSign.item["s"] := "{u+2120}" ; (℠) service mark
633 dkNotSign.item["S"] := "{u+2120}" ; (℠) service mark
634 dkNotSign.item["t"] := "{u+2122}" ; (™) trademark symbol
635 dkNotSign.item["T"] := "{u+2122}" ; (™) trademark symbol
636 dkNotSign.item["v"] := "{u+2713}" ; (✓) check mark
637 dkNotSign.item["V"] := "{u+2714}" ; (✔) heavy check mark
638 dkNotSign.item["w"] := "{u+2611}" ; (☑) ballot box with check
639 dkNotSign.item["W"] := "{u+2611}" ; (☑) ballot box with check
640 dkNotSign.item["x"] := "{u+2717}" ; (✗) ballot x
641 dkNotSign.item["X"] := "{u+2718}" ; (✘) heavy ballot x
642 dkNotSign.item["y"] := "{u+263a}" ; (☺) white smiling face
643 dkNotSign.item["Y"] := "{u+263b}" ; (☻) black smiling face
644 dkNotSign.item["1"] := "{u+2116}" ; (№) numero sign
645 dkNotSign.item["2"] := "{u+00bd}" ; (½) vulgar fraction 1/2
646 dkNotSign.item["3"] := "{u+2153}" ; (⅓) vulgar fraction 1/3
647 dkNotSign.item["4"] := "{u+00bc}" ; (¼) vulgar fraction 1/4
648 dkNotSign.item["5"] := "{u+2154}" ; (⅔) vulgar fraction 2/3
649 dkNotSign.item["6"] := "{u+00be}" ; (¾) vulgar fraction 3/4
650 dkNotSign.item["7"] := "{u+215b}" ; (⅛) vulgar fraction 1/8
651 dkNotSign.item["8"] := "{u+215c}" ; (⅜) vulgar fraction 3/8
652 dkNotSign.item["9"] := "{u+215d}" ; (⅝) vulgar fraction 5/8
653 dkNotSign.item["0"] := "{u+215e}" ; (⅞) vulgar fraction 7/8
654 dkNotSign.item["!"] := "{u+2116}" ; (№) numero sign
655 dkNotSign.item["@"] := "{u+00bd}" ; (½) vulgar fraction 1/2
656 dkNotSign.item["#"] := "{u+2153}" ; (⅓) vulgar fraction 1/3
657 dkNotSign.item["$"] := "{u+00bc}" ; (¼) vulgar fraction 1/4
658 dkNotSign.item["%"] := "{u+2154}" ; (⅔) vulgar fraction 2/3
659 dkNotSign.item["^"] := "{u+00be}" ; (¾) vulgar fraction 3/4
660 dkNotSign.item["&"] := "{u+215b}" ; (⅛) vulgar fraction 1/8
661 dkNotSign.item["*"] := "{u+215c}" ; (⅜) vulgar fraction 3/8
662 dkNotSign.item["("] := "{u+215d}" ; (⅝) vulgar fraction 5/8
663 dkNotSign.item[")"] := "{u+215e}" ; (⅞) vulgar fraction 7/8
664 dkNotSign.item["."] := "{u+2022}" ; (•) bullet
665 dkNotSign.item[","] := "{u+25e6}" ; (◦) white bullet
666 dkNotSign.item["-"] := "{u+2043}" ; (⁃) hyphen bullet
667 dkNotSign.item["="] := "{u+2023}" ; (‣) triangular bullet
668 dkNotSign.item["/"] := "{u+203c}" ; (‼) double exclamation mark
669 dkNotSign.item["?"] := "{u+203d}" ; (‽) interrobang
670 dkNotSign.item[chr(0x00bf)] := "{u+2e18}" ; (¿ -> ⸘) inverted interrobang
671 dkNotSign.item[chr(0x2026)] := "{u+2e2e}" ; (… -> ⸮) reversed question mark
672 dkNotSign.item["\"] := "{u+205e}" ; (⁞) vertical four dots
673 dkNotSign.item["|"] := "{u+205e}" ; (⁞) vertical four dots
674 dkNotSign.item[" "] := "{u+00ac}" ; (¬) not sign
677 ; Dead Key : Broken Bar
679 dkBrokenBar := ComObjCreate("Scripting.Dictionary")
680 dkBrokenBar.item["a"] := "{u+20b3}" ; (₳) Argentine austral
681 dkBrokenBar.item["A"] := "{u+20b3}" ; (₳) Argentine austral
682 dkBrokenBar.item["b"] := "{u+20bf}" ; (₿) bitcoin
683 dkBrokenBar.item["B"] := "{u+20bf}" ; (₿) bitcoin
684 dkBrokenBar.item["c"] := "{u+20a1}" ; (₡) Costa Rican colón
685 dkBrokenBar.item["C"] := "{u+20b5}" ; (₵) Ghanaian cedi
686 dkBrokenBar.item[chr(0x00e7)] := "{u+20a2}" ; (ç -> ₢) Brazilian cruzeiro
687 dkBrokenBar.item[chr(0x00c7)] := "{u+20a2}" ; (Ç -> ₢) Brazilian cruzeiro
688 dkBrokenBar.item["d"] := "{u+20ab}" ; (₫) Vietnamese dong
689 dkBrokenBar.item["D"] := "{u+20af}" ; (₯) Greek drachma
690 dkBrokenBar.item["f"] := "{u+20a3}" ; (₣) French franc
691 dkBrokenBar.item["F"] := "{u+20a3}" ; (₣) French franc
692 dkBrokenBar.item["g"] := "{u+20b2}" ; (₲) Paraguayan guaraní
693 dkBrokenBar.item["G"] := "{u+20b2}" ; (₲) Paraguayan guaraní
694 dkBrokenBar.item["h"] := "{u+20b4}" ; (₴) Ukrainian hryvnia
695 dkBrokenBar.item["H"] := "{u+20b4}" ; (₴) Ukrainian hryvnia
696 dkBrokenBar.item["k"] := "{u+20ad}" ; (₭) Laotian kip
697 dkBrokenBar.item["K"] := "{u+20ad}" ; (₭) Laotian kip
698 dkBrokenBar.item["l"] := "{u+20ba}" ; (₺) Turkish lira
699 dkBrokenBar.item["L"] := "{u+20be}" ; (₾) Georgian lari
700 dkBrokenBar.item[chr(0x00f8)] := "{u+20a4}" ; (ø -> ₤) lira
701 dkBrokenBar.item[chr(0x00d8)] := "{u+20b6}" ; (Ø -> ₶) livre tournois
702 dkBrokenBar.item["m"] := "{u+20bc}" ; (₼) Azerbaijani manat
703 dkBrokenBar.item["M"] := "{u+20a5}" ; (₥) mill sign
704 dkBrokenBar.item["n"] := "{u+20a6}" ; (₦) Nigerian naira
705 dkBrokenBar.item["N"] := "{u+20a6}" ; (₦) Nigerian naira
706 dkBrokenBar.item["p"] := "{u+20b1}" ; (₱) Philippine peso
707 dkBrokenBar.item["P"] := "{u+20b1}" ; (₱) Philippine peso
708 dkBrokenBar.item["r"] := "{u+20b9}" ; (₹) Indian rupee
709 dkBrokenBar.item["R"] := "{u+20bd}" ; (₽) Russian ruble
710 dkBrokenBar.item["s"] := "{u+20aa}" ; (₪) Israeli new shekel
711 dkBrokenBar.item["S"] := "{u+20b7}" ; (₷) spesmilo
712 dkBrokenBar.item["t"] := "{u+20ae}" ; (₮) Mongolian tögrög (tugrik)
713 dkBrokenBar.item["T"] := "{u+20b8}" ; (₸) Kazakh tenge
714 dkBrokenBar.item["w"] := "{u+20a9}" ; (₩) South Korean won
715 dkBrokenBar.item["W"] := "{u+20a9}" ; (₩) South Korean won
716 dkBrokenBar.item["o"] := "{u+01a1}" ; (ơ) o with horn
717 dkBrokenBar.item["O"] := "{u+01a0}" ; (Ơ) O with horn
718 dkBrokenBar.item["u"] := "{u+01b0}" ; (ư) u with horn
719 dkBrokenBar.item["U"] := "{u+01af}" ; (Ư) U with horn
720 dkBrokenBar.item["\"] := "{u+00a6}" ; (¦) broken bar
721 dkBrokenBar.item["|"] := "{u+00a6}" ; (¦) broken bar
722 dkBrokenBar.item[" "] := "{u+00a6}" ; (¦) broken bar
725 ; Dead Key : Greek Alphabet
727 dkGreekAlphabet := ComObjCreate("Scripting.Dictionary")
728 dkGreekAlphabet.item["a"] := "{u+03b1}" ; (α) small alpha
729 dkGreekAlphabet.item["A"] := "{u+0391}" ; (Α) capital alpha
730 dkGreekAlphabet.item["b"] := "{u+03b2}" ; (β) small beta
731 dkGreekAlphabet.item["B"] := "{u+0392}" ; (Β) capital beta
732 dkGreekAlphabet.item["v"] := "{u+03b2}" ; (β) small beta
733 dkGreekAlphabet.item["V"] := "{u+0392}" ; (Β) capital beta
734 dkGreekAlphabet.item["g"] := "{u+03b3}" ; (γ) small gamma
735 dkGreekAlphabet.item["G"] := "{u+0393}" ; (Γ) capital gamma
736 dkGreekAlphabet.item["d"] := "{u+03b4}" ; (δ) small delta
737 dkGreekAlphabet.item["D"] := "{u+0394}" ; (Δ) capital delta
738 dkGreekAlphabet.item["e"] := "{u+03b5}" ; (ε) small epsilon
739 dkGreekAlphabet.item["E"] := "{u+0395}" ; (Ε) capital epsilon
740 dkGreekAlphabet.item["z"] := "{u+03b6}" ; (ζ) small zeta
741 dkGreekAlphabet.item["Z"] := "{u+0396}" ; (Ζ) capital zeta
742 dkGreekAlphabet.item["h"] := "{u+03b7}" ; (η) small eta
743 dkGreekAlphabet.item["H"] := "{u+0397}" ; (Η) capital eta
744 dkGreekAlphabet.item["j"] := "{u+03b8}" ; (θ) small theta
745 dkGreekAlphabet.item["J"] := "{u+0398}" ; (Θ) capital theta
746 dkGreekAlphabet.item["i"] := "{u+03b9}" ; (ι) small iota
747 dkGreekAlphabet.item["I"] := "{u+0399}" ; (Ι) capital iota
748 dkGreekAlphabet.item["k"] := "{u+03ba}" ; (κ) small kappa
749 dkGreekAlphabet.item["K"] := "{u+039a}" ; (Κ) capital kappa
750 dkGreekAlphabet.item["l"] := "{u+03bb}" ; (λ) small lambda
751 dkGreekAlphabet.item["L"] := "{u+039b}" ; (Λ) capital lambda
752 dkGreekAlphabet.item["m"] := "{u+03bc}" ; (μ) small mu
753 dkGreekAlphabet.item["M"] := "{u+039c}" ; (Μ) capital mu
754 dkGreekAlphabet.item["n"] := "{u+03bd}" ; (ν) small nu
755 dkGreekAlphabet.item["N"] := "{u+039d}" ; (Ν) capital nu
756 dkGreekAlphabet.item["x"] := "{u+03be}" ; (ξ) small xi
757 dkGreekAlphabet.item["X"] := "{u+039e}" ; (Ξ) capital xi
758 dkGreekAlphabet.item["o"] := "{u+03bf}" ; (ο) small omicron
759 dkGreekAlphabet.item["O"] := "{u+039f}" ; (Ο) capital omicron
760 dkGreekAlphabet.item["p"] := "{u+03c0}" ; (π) small pi
761 dkGreekAlphabet.item["P"] := "{u+03a0}" ; (Π) capital pi
762 dkGreekAlphabet.item["r"] := "{u+03c1}" ; (ρ) small rho
763 dkGreekAlphabet.item["R"] := "{u+03a1}" ; (Ρ) capital rho
764 dkGreekAlphabet.item["s"] := "{u+03c3}" ; (σ) small sigma
765 dkGreekAlphabet.item["S"] := "{u+03a3}" ; (Σ) capital sigma
766 dkGreekAlphabet.item[","] := "{u+03c2}" ; (ς) small sigma, in word-final position
767 dkGreekAlphabet.item[chr(0x00df)] := "{u+03c2}" ; (ß -> ς) small sigma, in word-final position
768 dkGreekAlphabet.item["t"] := "{u+03c4}" ; (τ) small tau
769 dkGreekAlphabet.item["T"] := "{u+03a4}" ; (Τ) capital tau
770 dkGreekAlphabet.item["u"] := "{u+03c5}" ; (υ) small upsilon
771 dkGreekAlphabet.item["U"] := "{u+03a5}" ; (Υ) capital upsilon
772 dkGreekAlphabet.item["y"] := "{u+03c5}" ; (υ) small upsilon
773 dkGreekAlphabet.item["Y"] := "{u+03a5}" ; (Υ) capital upsilon
774 dkGreekAlphabet.item["f"] := "{u+03c6}" ; (φ) small phi
775 dkGreekAlphabet.item["F"] := "{u+03a6}" ; (Φ) capital phi
776 dkGreekAlphabet.item["c"] := "{u+03c7}" ; (χ) small chi
777 dkGreekAlphabet.item["C"] := "{u+03a7}" ; (Χ) capital chi
778 dkGreekAlphabet.item["w"] := "{u+03c8}" ; (ψ) small psi
779 dkGreekAlphabet.item["W"] := "{u+03a8}" ; (Ψ) capital psi
780 dkGreekAlphabet.item["q"] := "{u+03c9}" ; (ω) small omega
781 dkGreekAlphabet.item["Q"] := "{u+03a9}" ; (Ω) capital omega
782 dkGreekAlphabet.item["1"] := "{u+00b9}" ; (¹) superscript 1
783 dkGreekAlphabet.item["2"] := "{u+00b2}" ; (²) superscript 2
784 dkGreekAlphabet.item["3"] := "{u+00b3}" ; (³) superscript 3
785 dkGreekAlphabet.item["4"] := "{u+2074}" ; (⁴) superscript 4
786 dkGreekAlphabet.item["5"] := "{u+2075}" ; (⁵) superscript 5
787 dkGreekAlphabet.item["6"] := "{u+2076}" ; (⁶) superscript 6
788 dkGreekAlphabet.item["7"] := "{u+2077}" ; (⁷) superscript 7
789 dkGreekAlphabet.item["8"] := "{u+2078}" ; (⁸) superscript 8
790 dkGreekAlphabet.item["9"] := "{u+2079}" ; (⁹) superscript 9
791 dkGreekAlphabet.item["0"] := "{u+2070}" ; (⁰) superscript 0
792 dkGreekAlphabet.item["-"] := "{u+207b}" ; (⁻) superscript -
793 dkGreekAlphabet.item["="] := "{u+207c}" ; (⁼) superscript =
794 dkGreekAlphabet.item["+"] := "{u+207a}" ; (⁺) superscript +
795 dkGreekAlphabet.item["["] := "{u+207d}" ; (⁽) superscript (
796 dkGreekAlphabet.item["]"] := "{u+207e}" ; (⁾) superscript )
797 dkGreekAlphabet.item["!"] := "{u+2081}" ; (₁) subscript 1
798 dkGreekAlphabet.item["@"] := "{u+2082}" ; (₂) subscript 2
799 dkGreekAlphabet.item["#"] := "{u+2083}" ; (₃) subscript 3
800 dkGreekAlphabet.item["$"] := "{u+2084}" ; (₄) subscript 4
801 dkGreekAlphabet.item["%"] := "{u+2085}" ; (₅) subscript 5
802 dkGreekAlphabet.item["^"] := "{u+2086}" ; (₆) subscript 6
803 dkGreekAlphabet.item["&"] := "{u+2087}" ; (₇) subscript 7
804 dkGreekAlphabet.item["*"] := "{u+2088}" ; (₈) subscript 8
805 dkGreekAlphabet.item["("] := "{u+2089}" ; (₉) subscript 9
806 dkGreekAlphabet.item[")"] := "{u+2080}" ; (₀) subscript 0
807 dkGreekAlphabet.item[";"] := "{u+208b}" ; (₋) subscript -
808 dkGreekAlphabet.item["'"] := "{u+208c}" ; (₌) subscript =
809 dkGreekAlphabet.item[chr(34)] := "{u+208a}" ; (₊) subscript +
810 dkGreekAlphabet.item["{"] := "{u+208d}" ; (₍) subscript (
811 dkGreekAlphabet.item["}"] := "{u+208e}" ; (₎) subscript )
812 dkGreekAlphabet.item["."] := "{u+00b5}" ; (µ) micro sign
813 dkGreekAlphabet.item[" "] := "{u+03bc}" ; (μ) small mu
816 ; Dead Key : Math Symbols
818 dkMathSymbols := ComObjCreate("Scripting.Dictionary")
819 dkMathSymbols.item["a"] := "{u+2200}" ; (∀) for all
820 dkMathSymbols.item["A"] := "{u+2200}" ; (∀) for all
821 dkMathSymbols.item["b"] := "{u+2286}" ; (⊆) subset of or equal to
822 dkMathSymbols.item["B"] := "{u+2287}" ; (⊇) superset of or equal to
823 dkMathSymbols.item["c"] := "{u+221d}" ; (∝) proportional to
824 dkMathSymbols.item["C"] := "{u+2102}" ; (ℂ) complex numbers
825 dkMathSymbols.item["d"] := "{u+2206}" ; (∆) increment operator
826 dkMathSymbols.item["D"] := "{u+2207}" ; (∇) nable/del operator
827 dkMathSymbols.item["e"] := "{u+2203}" ; (∃) there exists
828 dkMathSymbols.item["E"] := "{u+2204}" ; (∄) there does not exist
829 dkMathSymbols.item["f"] := "{u+0192}" ; (ƒ) f with hook
830 dkMathSymbols.item["F"] := "{u+220e}" ; (∎) end of proof
831 dkMathSymbols.item["g"] := "{u+2282}" ; (⊂) subset of
832 dkMathSymbols.item["G"] := "{u+2284}" ; (⊄) not a subset of
833 dkMathSymbols.item["h"] := "{u+2283}" ; (⊃) superset of
834 dkMathSymbols.item["H"] := "{u+2285}" ; (⊅) not a superset of
835 dkMathSymbols.item["i"] := "{u+221e}" ; (∞) infinity symbol
836 dkMathSymbols.item["I"] := "{u+221e}" ; (∞) infinity symbol
837 dkMathSymbols.item["k"] := "{u+220b}" ; (∋) contains as member
838 dkMathSymbols.item["K"] := "{u+220c}" ; (∌) does not contain as member
839 dkMathSymbols.item["l"] := "{u+2225}" ; (∥) parallel to
840 dkMathSymbols.item["L"] := "{u+2226}" ; (∦) not parallel to
841 dkMathSymbols.item["m"] := "{u+2208}" ; (∈) element of
842 dkMathSymbols.item["M"] := "{u+2209}" ; (∉) not an element of
843 dkMathSymbols.item["n"] := "{u+207f}" ; (ⁿ) superscript n
844 dkMathSymbols.item["N"] := "{u+2115}" ; (ℕ) natural numbers
845 dkMathSymbols.item["o"] := "{u+2218}" ; (∘) ring operator
846 dkMathSymbols.item["O"] := "{u+2205}" ; (∅) empty set
847 dkMathSymbols.item["p"] := "{u+2202}" ; (∂) partial differential
848 dkMathSymbols.item["P"] := "{u+2119}" ; (ℙ) prime numbers
849 dkMathSymbols.item["q"] := "{u+211a}" ; (ℚ) rational numbers
850 dkMathSymbols.item["Q"] := "{u+211a}" ; (ℚ) rational numbers
851 dkMathSymbols.item["r"] := "{u+221a}" ; (√) square root
852 dkMathSymbols.item["R"] := "{u+211d}" ; (ℝ) real numbers
853 dkMathSymbols.item["s"] := "{u+2229}" ; (∩) set intersection
854 dkMathSymbols.item["S"] := "{u+222b}" ; (∫) integral symbol
855 dkMathSymbols.item["u"] := "{u+222a}" ; (∪) set union
856 dkMathSymbols.item["U"] := "{u+2216}" ; (∖) set minus
857 dkMathSymbols.item["w"] := "{u+2118}" ; (℘) Weierstrass elliptic function
858 dkMathSymbols.item["W"] := "{u+2118}" ; (℘) Weierstrass elliptic function
859 dkMathSymbols.item["z"] := "{u+21af}" ; (↯) downwards zigzag arrow
860 dkMathSymbols.item["Z"] := "{u+2124}" ; (ℤ) whole numbers
861 dkMathSymbols.item["1"] := "{u+2260}" ; (≠) not equal to
862 dkMathSymbols.item["!"] := "{u+2260}" ; (≠) not equal to
863 dkMathSymbols.item["2"] := "{u+221a}" ; (√) square root
864 dkMathSymbols.item["@"] := "{u+221a}" ; (√) square root
865 dkMathSymbols.item["3"] := "{u+221b}" ; (∛) cube root
866 dkMathSymbols.item["#"] := "{u+221b}" ; (∛) cube root
867 dkMathSymbols.item["4"] := "{u+221c}" ; (∜) fourth root
868 dkMathSymbols.item["$"] := "{u+221c}" ; (∜) fourth root
869 dkMathSymbols.item["5"] := "{u+2030}" ; (‰) per mille sign
870 dkMathSymbols.item["%"] := "{u+2031}" ; (‱) per ten thousand sign
871 dkMathSymbols.item["6"] := "{u+2220}" ; (∠) angle symbol
872 dkMathSymbols.item["^"] := "{u+2220}" ; (∠) angle symbol
873 dkMathSymbols.item["7"] := "{u+2227}" ; (∧) logical and
874 dkMathSymbols.item["&"] := "{u+2227}" ; (∧) logical and
875 dkMathSymbols.item["8"] := "{u+2297}" ; (⊗) tensor product
876 dkMathSymbols.item["*"] := "{u+2297}" ; (⊗) tensor product
877 dkMathSymbols.item["9"] := "{u+221f}" ; (∟) right angle
878 dkMathSymbols.item["("] := "{u+221f}" ; (∟) right angle
879 dkMathSymbols.item["0"] := "{u+2221}" ; (∡) measured angle
880 dkMathSymbols.item[")"] := "{u+2221}" ; (∡) measured angle
881 dkMathSymbols.item["``"] := "{u+2248}" ; (≈) almost equal to
882 dkMathSymbols.item["~"] := "{u+2248}" ; (≈) almost equal to
883 dkMathSymbols.item[","] := "{u+2264}" ; (≤) less-than or equal to
884 dkMathSymbols.item["<"] := "{u+2264}" ; (≤) less-than or equal to
885 dkMathSymbols.item["."] := "{u+2265}" ; (≥) greater-than or equal to
886 dkMathSymbols.item[">"] := "{u+2265}" ; (≥) greater-than or equal to
887 dkMathSymbols.item["-"] := "{u+2296}" ; (⊖) circled minus
888 dkMathSymbols.item["_"] := "{u+2298}" ; (⊘) circled division slash
889 dkMathSymbols.item["="] := "{u+225d}" ; (≝) equal to by definition
890 dkMathSymbols.item["+"] := "{u+2295}" ; (⊕) exclusive or
891 dkMathSymbols.item[chr(0x00d7)] := "{u+2261}" ; (× -> ≡) identical to
892 dkMathSymbols.item[chr(0x00f7)] := "{u+2262}" ; (÷ -> ≢) not identical to
893 dkMathSymbols.item[";"] := "{u+2235}" ; (∵) because sign
894 dkMathSymbols.item[":"] := "{u+2234}" ; (∴) therefore sign
895 dkMathSymbols.item["'"] := "{u+2032}" ; (′) prime
896 dkMathSymbols.item[chr(34)] := "{u+2033}" ; (″) double prime
897 dkMathSymbols.item["/"] := "{u+2034}" ; (‴) triple prime
898 dkMathSymbols.item["?"] := "{u+2057}" ; (⁗) quadruple prime
899 dkMathSymbols.item["\"] := "{u+2228}" ; (∨) logical or
900 dkMathSymbols.item["|"] := "{u+2228}" ; (∨) logical or
901 dkMathSymbols.item[" "] := "{u+221a}" ; (√) square root
904 ; Configuration : 'Right Alt' and 'Right Alt + Shift' on US QWERTY
907 if GetKeyState("CapsLock", "T")
908 Send {u+00c4} ; (Ä) A with diaeresis
910 Send {u+00e4} ; (ä) a with diaeresis
911 Send {blind}{vkE8} ; suppresses 'Right Alt + Shift' hotkey, circles around mouse pointer and/or other issues
914 if GetKeyState("CapsLock", "T")
915 Send {u+00e4} ; (ä) a with diaeresis
917 Send {u+00c4} ; (Ä) A with diaeresis
918 Send {blind}{vkE8} ; suppresses 'Right Alt + Shift' hotkey, circles around mouse pointer and/or other issues
922 if GetKeyState("CapsLock", "T")
923 Send {u+00c0} ; (À) A with grave
925 Send {u+00e0} ; (à) a with grave
929 if GetKeyState("CapsLock", "T")
930 Send {u+00e0} ; (à) a with grave
932 Send {u+00c0} ; (À) A with grave
937 if GetKeyState("CapsLock", "T")
938 Send {u+00c1} ; (Á) A with acute
940 Send {u+00e1} ; (á) a with acute
944 if GetKeyState("CapsLock", "T")
945 Send {u+00e1} ; (á) a with acute
947 Send {u+00c1} ; (Á) A with acute
952 if GetKeyState("CapsLock", "T")
953 Send {u+00c6} ; (Æ) letter AE
955 Send {u+00e6} ; (æ) letter ae
959 if GetKeyState("CapsLock", "T")
960 Send {u+00e6} ; (æ) letter ae
962 Send {u+00c6} ; (Æ) letter AE
967 if GetKeyState("CapsLock", "T")
968 Send {u+00c5} ; (Å) A with ring above
970 Send {u+00e5} ; (å) a with ring above
974 if GetKeyState("CapsLock", "T")
975 Send {u+00e5} ; (å) a with ring above
977 Send {u+00c5} ; (Å) A with ring above
982 if GetKeyState("CapsLock", "T")
983 Send {u+00c7} ; (Ç) C with cedilla
985 Send {u+00e7} ; (ç) c with cedilla
989 if GetKeyState("CapsLock", "T")
990 Send {u+00e7} ; (ç) c with cedilla
992 Send {u+00c7} ; (Ç) C with cedilla
997 if GetKeyState("CapsLock", "T")
998 Send {u+00d0} ; (Ð) capital letter eth
1000 Send {u+00f0} ; (ð) small letter eth
1004 if GetKeyState("CapsLock", "T")
1005 Send {u+00f0} ; (ð) small letter eth
1007 Send {u+00d0} ; (Ð) capital letter eth
1012 if GetKeyState("CapsLock", "T")
1013 Send {u+00cb} ; (Ë) E with diaeresis
1015 Send {u+00eb} ; (ë) e with diaeresis
1019 if GetKeyState("CapsLock", "T")
1020 Send {u+00eb} ; (ë) e with diaeresis
1022 Send {u+00cb} ; (Ë) E with diaeresis
1027 if GetKeyState("CapsLock", "T")
1028 Send {u+00c8} ; (È) E with grave
1030 Send {u+00e8} ; (è) e with grave
1034 if GetKeyState("CapsLock", "T")
1035 Send {u+00e8} ; (è) e with grave
1037 Send {u+00c8} ; (È) E with grave
1042 if GetKeyState("CapsLock", "T")
1043 Send {u+00c9} ; (É) E with acute
1045 Send {u+00e9} ; (é) e with acute
1049 if GetKeyState("CapsLock", "T")
1050 Send {u+00e9} ; (é) e with acute
1052 Send {u+00c9} ; (É) E with acute
1057 if GetKeyState("CapsLock", "T")
1058 Send {u+00cf} ; (Ï) I with diaeresis
1060 Send {u+00ef} ; (ï) i with diaeresis
1064 if GetKeyState("CapsLock", "T")
1065 Send {u+00ef} ; (ï) i with diaeresis
1067 Send {u+00cf} ; (Ï) I with diaeresis
1072 if GetKeyState("CapsLock", "T")
1073 Send {u+00cc} ; (Ì) I with grave
1075 Send {u+00ec} ; (ì) i with grave
1079 if GetKeyState("CapsLock", "T")
1080 Send {u+00ec} ; (ì) i with grave
1082 Send {u+00cc} ; (Ì) I with grave
1087 if GetKeyState("CapsLock", "T")
1088 Send {u+00cd} ; (Í) I with acute
1090 Send {u+00ed} ; (í) i with acute
1094 if GetKeyState("CapsLock", "T")
1095 Send {u+00ed} ; (í) i with acute
1097 Send {u+00cd} ; (Í) I with acute
1102 if GetKeyState("CapsLock", "T")
1103 Send {u+00d1} ; (Ñ) N with tilde
1105 Send {u+00f1} ; (ñ) n with tilde
1109 if GetKeyState("CapsLock", "T")
1110 Send {u+00f1} ; (ñ) n with tilde
1112 Send {u+00d1} ; (Ñ) N with tilde
1117 if GetKeyState("CapsLock", "T")
1118 Send {u+00d6} ; (Ö) O with diaeresis
1120 Send {u+00f6} ; (ö) o with diaeresis
1124 if GetKeyState("CapsLock", "T")
1125 Send {u+00f6} ; (ö) o with diaeresis
1127 Send {u+00d6} ; (Ö) O with diaeresis
1132 if GetKeyState("CapsLock", "T")
1133 Send {u+00d2} ; (Ò) O with grave
1135 Send {u+00f2} ; (ò) o with grave
1139 if GetKeyState("CapsLock", "T")
1140 Send {u+00f2} ; (ò) o with grave
1142 Send {u+00d2} ; (Ò) O with grave
1147 if GetKeyState("CapsLock", "T")
1148 Send {u+00d3} ; (Ó) O with acute
1150 Send {u+00f3} ; (ó) o with acute
1154 if GetKeyState("CapsLock", "T")
1155 Send {u+00f3} ; (ó) o with acute
1157 Send {u+00d3} ; (Ó) O with acute
1162 if GetKeyState("CapsLock", "T")
1163 Send {u+0152} ; (Œ) ligature OE
1165 Send {u+0153} ; (œ) ligature oe
1169 if GetKeyState("CapsLock", "T")
1170 Send {u+0153} ; (œ) ligature oe
1172 Send {u+0152} ; (Œ) ligature OE
1177 if GetKeyState("CapsLock", "T")
1178 Send {u+00d8} ; (Ø) O with stroke
1180 Send {u+00f8} ; (ø) o with stroke
1184 if GetKeyState("CapsLock", "T")
1185 Send {u+00f8} ; (ø) o with stroke
1187 Send {u+00d8} ; (Ø) O with stroke
1192 if GetKeyState("CapsLock", "T")
1193 Send {u+00de} ; (Þ) capital letter thorn
1195 Send {u+00fe} ; (þ) small letter thorn
1199 if GetKeyState("CapsLock", "T")
1200 Send {u+00fe} ; (þ) small letter thorn
1202 Send {u+00de} ; (Þ) capital letter thorn
1207 if GetKeyState("CapsLock", "T")
1208 Send {u+00dc} ; (Ü) U with diaeresis
1210 Send {u+00fc} ; (ü) u with diaeresis
1214 if GetKeyState("CapsLock", "T")
1215 Send {u+00fc} ; (ü) u with diaeresis
1217 Send {u+00dc} ; (Ü) U with diaeresis
1222 if GetKeyState("CapsLock", "T")
1223 Send {u+00d9} ; (Ù) U with grave
1225 Send {u+00f9} ; (ù) u with grave
1229 if GetKeyState("CapsLock", "T")
1230 Send {u+00f9} ; (ù) u with grave
1232 Send {u+00d9} ; (Ù) U with grave
1237 if GetKeyState("CapsLock", "T")
1238 Send {u+00da} ; (Ú) U with acute
1240 Send {u+00fa} ; (ú) u with acute
1244 if GetKeyState("CapsLock", "T")
1245 Send {u+00fa} ; (ú) u with acute
1247 Send {u+00da} ; (Ú) U with acute
1252 if GetKeyState("CapsLock", "T")
1253 Send {u+0178} ; (Ÿ) Y with diaeresis
1255 Send {u+00ff} ; (ÿ) y with diaeresis
1259 if GetKeyState("CapsLock", "T")
1260 Send {u+00ff} ; (ÿ) y with diaeresis
1262 Send {u+0178} ; (Ÿ) Y with diaeresis
1267 if GetKeyState("CapsLock", "T")
1268 Send {u+00dd} ; (Ý) Y with acute
1270 Send {u+00fd} ; (ý) y with acute
1274 if GetKeyState("CapsLock", "T")
1275 Send {u+00fd} ; (ý) y with acute
1277 Send {u+00dd} ; (Ý) Y with acute
1282 Send {u+2020} ; (†) dagger
1286 Send {u+2021} ; (‡) double dagger
1291 Send {u+00df} ; (ß) small sharp s (Eszett)
1295 Send {u+00a7} ; (§) section sign
1300 Send {u+00bf} ; (¿) inverted question mark
1304 Send {u+2026} ; (…) horizontal ellipsis
1309 Send {u+00a1} ; (¡) inverted exclamation mark
1313 Send {u+00b9} ; (¹) superscript 1
1318 Send {u+00a9} ; (©) copyright sign
1322 Send {u+00b2} ; (²) superscript 2
1327 Send {u+00b1} ; (±) plus-minus sign
1331 Send {u+00b3} ; (³) superscript 3
1336 Send {u+00a3} ; (£) pound sign
1340 Send {u+00a5} ; (¥) yen sign
1345 Send {u+20ac} ; (€) euro sign
1349 Send {u+00a2} ; (¢) cent sign (dollar)
1354 Send {u+201e} ; („) double low-9 quotation mark
1358 Send {u+00b6} ; (¶) pilcrow sign
1363 Send {u+201c} ; (“) left double quotation mark
1367 Send {u+2018} ; (‘) left single quotation mark
1372 Send {u+201d} ; (”) right double quotation mark
1376 Send {u+2019} ; (’) right single quotation mark
1381 Send {u+00d7} ; (×) multiplication sign
1385 Send {u+00f7} ; (÷) division sign
1390 Send {u+00ab} ; («) left-pointing double angle quotation mark
1394 Send {u+2039} ; (‹) left-pointing single angle quotation mark
1399 Send {u+00bb} ; (») right-pointing double angle quotation mark
1403 Send {u+203a} ; (›) right-pointing single angle quotation mark
1408 Send {u+00b0} ; (°) degree sign
1412 Send {u+00b7} ; (·) middle dot
1417 Send {u+00a0} ; non-breaking space
1421 Send {u+00a0} ; non-breaking space
1426 ; Configuration : Dead Keys on 'Right Alt' and 'Right Alt + Shift'
1429 Send {blind}{vkE8} ; suppresses 'Right Alt + Shift' hotkey, circles around mouse pointer and/or other issues
1430 Input, key, L1, {bs}{del}{esc}{home}{end}
1431 Send % dkCircumflex.item[key]
1432 key := "" ; avoids leaking content via debug properties
1433 Send {blind}{vkE8} ; suppresses 'Right Alt + Shift' hotkey, circles around mouse pointer and/or other issues (for second character)
1436 Send {blind}{vkE8} ; suppresses 'Right Alt + Shift' hotkey, circles around mouse pointer and/or other issues
1437 Input, key, L1, {bs}{del}{esc}{home}{end}
1438 Send % dkCaron.item[key]
1439 key := "" ; avoids leaking content via debug properties
1440 Send {blind}{vkE8} ; suppresses 'Right Alt + Shift' hotkey, circles around mouse pointer and/or other issues (for second character)
1445 Input, key, L1, {bs}{del}{esc}{home}{end}
1446 Send % dkRingDotAbove.item[key]
1452 Input, key, L1, {bs}{del}{esc}{home}{end}
1453 Send % dkMacronStroke.item[key]
1460 Input, key, L1, {bs}{del}{esc}{home}{end}
1461 Send % dkCedillaOgonek.item[key]
1467 Input, key, L1, {bs}{del}{esc}{home}{end}
1468 Send % dkBreveSpecial.item[key]
1475 Input, key, L1, {bs}{del}{esc}{home}{end}
1476 Send % dkAcuteAccent.item[key]
1482 Input, key, L1, {bs}{del}{esc}{home}{end}
1483 Send % dkDiaeresis.item[key]
1490 Input, key, L1, {bs}{del}{esc}{home}{end}
1491 Send % dkGraveAccent.item[key]
1497 Input, key, L1, {bs}{del}{esc}{home}{end}
1498 Send % dkTilde.item[key]
1505 Input, key, L1, {bs}{del}{esc}{home}{end}
1506 Send % dkNotSign.item[key]
1512 Input, key, L1, {bs}{del}{esc}{home}{end}
1513 Send % dkBrokenBar.item[key]
1520 Input, key, L1, {bs}{del}{esc}{home}{end}
1521 Send % dkGreekAlphabet.item[key]
1527 Input, key, L1, {bs}{del}{esc}{home}{end}
1528 Send % dkMathSymbols.item[key]